/** * This file was auto-generated by Fern from our API Definition. */ import * as Skyflow from "../../../../index"; /** * @example * { * text: "My name is [NAME_1], and my email is [EMAIL_1].", * vault_id: "1ad6db07-8405-46cf-9a1e-db148ff9f4c5" * } */ export interface ReidentifyStringRequest { /** String to re-identify. */ text: string; /** ID of the vault where the entities are stored. */ vault_id: string; /** Mapping of perferred data formatting options to entity types. Returned values are dependent on the configuration of the vault storing the data and the permissions of the user or account making the request. */ format?: Skyflow.ReidentifyStringRequestFormat; }